wayland: Respect cursor size setting
authorMatthias Clasen <mclasen@redhat.com>
Fri, 22 Mar 2013 23:32:39 +0000 (19:32 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 22 Mar 2013 23:32:39 +0000 (19:32 -0400)
Respect the cursor size setting when loading the cursor theme.

gdk/wayland/gdkdisplay-wayland.c

index 146b499a1c0c03105eb58585ca787bd8a59f86a2..c3442f0361de7a97689b36f8748614c255e9547e 100644 (file)
@@ -565,15 +565,20 @@ gdk_wayland_display_init (GdkWaylandDisplay *display)
 static void
 _gdk_wayland_display_load_cursor_theme (GdkWaylandDisplay *wayland_display)
 {
-  guint w, h;
+  guint size;
   const gchar *theme_name;
   GValue v = G_VALUE_INIT;
 
   g_assert (wayland_display);
   g_assert (wayland_display->shm);
 
-  _gdk_wayland_display_get_default_cursor_size (GDK_DISPLAY (wayland_display),
-                                                &w, &h);
+  g_value_init (&v, G_TYPE_INT);
+  if (gdk_setting_get ("gtk-cursor-theme-size", &v))
+    size = g_value_get_int (&v);
+  else
+    size = 32;
+  g_value_unset (&v);
+
   g_value_init (&v, G_TYPE_STRING);
   if (gdk_setting_get ("gtk-cursor-theme-name", &v))
     theme_name = g_value_get_string (&v);
@@ -581,7 +586,7 @@ _gdk_wayland_display_load_cursor_theme (GdkWaylandDisplay *wayland_display)
     theme_name = "default";
 
   wayland_display->cursor_theme = wl_cursor_theme_load (theme_name,
-                                                        w,
+                                                        size,
                                                         wayland_display->shm);
   g_value_unset (&v);
 }